/* Layout */
.bom-wrapper {
    display: flex;
    align-items: center;
    gap: 22px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.bom-wrapper.active {
    opacity: 1;
    transform: translateY(0);
}

/* Arrow */
.bom-arrow {
    width: 170px;
    height: 110px;
}

/* Path */
.bom-path {
    fill: none;
    stroke: #f7941d;
    stroke-width: 2.5;
    stroke-dasharray: 6 6;
    stroke-linecap: round;

    stroke-dashoffset: 220;
    animation: draw 2s ease forwards, dashMove 3s linear infinite;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes dashMove {
    to { stroke-dashoffset: -20; }
}

/* Line */
.bom-line {
    width: 2px;
    height: 88px;
    background: #f7941d;
    transition: transform 0.3s ease;
}

/* Text */
.bom-text {
    font-size: 20px;
    line-height: 1.7;
    color: #222;
}

.bom-text strong {
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Hover */
.bom-wrapper:hover .bom-line {
    transform: scaleY(1.1);
}

.bom-wrapper:hover .bom-text strong {
    color: #f7941d;
}

/* Mobile */
@media(max-width:768px){
    .bom-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
    }

    .bom-line {
        width: 80px;
        height: 2px;
    }
}