.elementor-23267 .elementor-element.elementor-element-7622809{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-23267 .elementor-element.elementor-element-798c6e3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-23267 .elementor-element.elementor-element-798c6e3:not(.elementor-motion-effects-element-type-background), .elementor-23267 .elementor-element.elementor-element-798c6e3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-0f71df2 *//* Reset & Container */
.hw-split-hero {
    display: flex;
    width: 100%;
    min-height: 600px;
    background: #000;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Kolom Gambar - Tetap Contain/Cover sesuai desain */
.hw-hero-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
}

.hw-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar gambar penuh memenuhi kolom */
}

/* Kolom Teks */
.hw-hero-content {
    background: #000; /* Hitam pekat sesuai brief */
    color: #ffffff;
    padding: 80px 6%; /* Spasi lega agar terlihat premium */
}

.hw-content-inner {
    max-width: 500px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s ease-out;
}

/* Typography */
.hw-title {
    font-size: clamp(36px, 5vw, 64px); /* Ukuran font dinamis le */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
    color:#fff;
}

.hw-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #cccccc;
    text-transform: none;
}

/* Animasi saat Visible */
.hw-content-inner.is-active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Mobile (Tumpuk Vertikal) */
@media (max-width: 768px) {
    .hw-split-hero {
        flex-direction: column;
        min-height: auto;
    }
    .hw-hero-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hw-hero-img {
        height: 400px; /* Tinggi gambar di mobile */
    }
    .hw-hero-content {
        padding: 50px 8%;
    }
}/* End custom CSS */