/* Rental Workflow Component */
.rental-workflow-section {
    padding: 80px 0;
    background-color: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.workflow-steps-wrap {
    margin-top: 50px;
}

.workflow-icons-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
}

.workflow-icons-row::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.workflow-icon-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.workflow-icon-item:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid #CD8C4A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #CD8C4A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.workflow-icon-item.active .icon-box {
    background: #CD8C4A;
    color: #fff;
    box-shadow: 0 8px 20px rgba(205, 140, 74, 0.3);
}

.workflow-icon-item span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.workflow-icon-item.active span {
    color: #CD8C4A;
}

.workflow-content-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: none;
    /* JS will toggle */
}

.workflow-content-box.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.workflow-content-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
}

.workflow-content-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.workflow-content-box .btn {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .workflow-icons-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .workflow-icons-row::before {
        display: none;
    }

    .workflow-icon-item {
        width: 30%;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .workflow-icon-item {
        width: 45%;
    }
}