.ts-1350-container {
    width: 100%;
    padding: 2rem 0;
}

.ts-1350-timeline {
    position: relative;
    width: 100%;
}

.ts-1350-line {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #E0E0E0;
    z-index: 1;
}

.ts-1350-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.ts-1350-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: ts-1350-fadeInUp 0.6s ease forwards;
}

.ts-1350-step:nth-child(1) { animation-delay: 0.1s; }
.ts-1350-step:nth-child(2) { animation-delay: 0.2s; }
.ts-1350-step:nth-child(3) { animation-delay: 0.3s; }
.ts-1350-step:nth-child(4) { animation-delay: 0.4s; }
.ts-1350-step:nth-child(5) { animation-delay: 0.5s; }
.ts-1350-step:nth-child(6) { animation-delay: 0.6s; }

@keyframes ts-1350-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ts-1350-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 3px solid #E87603;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.ts-1350-step-circle i,
.ts-1350-step-circle svg {
    font-size: 20px;
    color: #E87603;
    transition: all 0.3s ease;
}

.ts-1350-step.ts-1350-active .ts-1350-step-circle {
    background-color: #E87603;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(232, 118, 3, 0.3);
}

.ts-1350-step.ts-1350-active .ts-1350-step-circle i,
.ts-1350-step.ts-1350-active .ts-1350-step-circle svg {
    color: #FFFFFF;
    fill: #FFFFFF;
}

.ts-1350-step:hover .ts-1350-step-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(232, 118, 3, 0.2);
}

.ts-1350-step-content {
    text-align: center;
    max-width: 150px;
}

.ts-1350-step-title {
    font-size: 14px;
    font-weight: 600;
    color: #1D1E20;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ts-1350-step-description {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ts-1350-step:hover .ts-1350-step-description {
    opacity: 1;
    max-height: 200px;
    margin-top: 0.5rem;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .ts-1350-line {
        top: 0;
        left: 25px;
        right: auto;
        bottom: 0;
        width: 3px;
        height: auto;
    }

    .ts-1350-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .ts-1350-step {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
    }

    .ts-1350-step-circle {
        margin-bottom: 0;
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .ts-1350-step-content {
        text-align: left;
        max-width: 100%;
        flex: 1;
    }

    .ts-1350-step-description {
        opacity: 1;
        max-height: none;
        margin-top: 0.5rem;
    }
}
